home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / isatty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  187 b   |  14 lines

  1. #include "lib.h"
  2. #include <minix/com.h>
  3. #include <sgtty.h>
  4.  
  5. int isatty(fd)
  6. int fd;
  7. {
  8.   M.TTY_REQUEST = TIOCGETP;
  9.   M.TTY_LINE = fd;
  10.   if (callx(FS, IOCTL) < 0)
  11.     return(0);
  12.   return(1);
  13. }
  14.